home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Internet Strate…Tools for the Enterprise / Microsoft Internet Strategy & Tools for the Enterprise.iso / bkoffice / inetsrv.nts / nt351qfe.usa / readme.txt
Text File  |  1995-11-20  |  12KB  |  247 lines

  1. ---------------------------------------------------------------------------
  2.               Microsoft Windows NT 3.51 Workstation and Server
  3.                             U.S. Service Pack 3
  4. ---------------------------------------------------------------------------
  5.  
  6.  
  7. Contents
  8. --------
  9. 1.0  Introduction
  10. 2.0  Installation Instructions for the Windows NT 3.51 U.S. Service Pack 3
  11. 2.1  User Notes
  12. 2.2  List of Bugs Fixed in Windows NT 3.51 U.S. Service Pack 3
  13.  
  14. 1.0  Introduction
  15. -----------------
  16. This release of Microsoft(R) Windows NT(TM) 3.51 U.S. Service Pack 3 is
  17. easy to apply from within Windows NT and changes only those files that
  18. were originally set up on the Windows NT Workstation or Windows NT Server
  19. system.  Service Pack releases are cumulative: they contain all previous
  20. fixes, as well as any new fixes made to the system.
  21.  
  22.  
  23. 2.0  Installation Instructions for the Windows NT U.S. Service Pack
  24. -------------------------------------------------------------------
  25. Installing the Service Pack from a floppy disk:
  26. 1.  Insert Service Pack Disk 1 into the floppy drive.
  27. 2.  At the Windows NT Command Prompt, change to that floppy drive (that is,
  28.     A: or B:) and type UPDATE.
  29. 3.  Follow the instructions given on the screen.
  30.  
  31. Installing the Service Pack from a CD-ROM:
  32. 1.  Insert the Service Pack CD-ROM disk into the CD-ROM drive.
  33. 2.  At the Windows NT Command Prompt, change to that CD-ROM drive, then
  34.     change to the i386, MIPS, ALPHA, or PPC directory (depending upon whether
  35.     you have an Intel(TM), MIPS(R), ALPHA AXP(TM) or PowerPC(R) CPU), and 
  36.     type UPDATE.
  37. 3.  Follow the instructions given on the screen.
  38.  
  39. Installing the Service Pack from a network drive:
  40. 1.  At the Windows NT Command Prompt, type the command to connect to the
  41.     network drive on which the Service Pack files reside.
  42. 2.  Change to that network drive and type UPDATE.
  43. 3.  Follow the instructions given on the screen.
  44.  
  45.  
  46. 2.1  User Notes
  47. ---------------
  48. *** New ROUTE.EXE Command Line Argument
  49.  
  50. A new command line argument for ROUTE.EXE has been added in Service Pack 3. 
  51. The new parameter is METRIC, and is described below:
  52.  
  53. ROUTE [-f] [command [destination] [MASK netmask] [gateway] [METRIC metric]]
  54.  
  55. METRIC
  56.    The metric option is used to associate a cost/hop count for the 
  57.    destination specified by the route entry. Generally this specifies the 
  58.    distance in number of hops from the destination. If not specified, the 
  59.    metric is set to 1 by default.
  60.  
  61.  
  62. *** Emergency Repair Disk
  63.  
  64. If it is necessary to use the Windows NT Emergency Repair Disk to repair
  65. your Windows NT system at some time after you apply the Service Pack, you
  66. will need to re-apply the Service Pack after the repair is completed.  This
  67. is because the Emergency Repair Disk repairs your system by restoring your
  68. original Windows NT setup.  After the repair has completed, simply follow
  69. the above Installation Instructions to reapply the Service Pack.
  70.  
  71.  
  72. *** Adding New Components to the System
  73.  
  74. If new software or hardware components are changed or added to your system
  75. after you have applied the Service Pack, it will be necessary to reapply
  76. the Service Pack.  This is because the files taken from the original
  77. Windows NT disk set may not be equivalent to the files on the Service Pack
  78. disk set.  It is not possible to install new components directly from the
  79. Service Pack media (such as a new keyboard or printer driver).  New
  80. components must be installed from the original product media.
  81.  
  82.  
  83. *** Installing Symbol Files from the CD-ROM
  84.  
  85. To install the symbol files corresponding to the new binaries in Service
  86. Pack 2, do the following (assuming your CD-ROM drive is D:, your symbol
  87. files are located in the C:\WINNT\SYMBOLS directory, and you are installing
  88. the files for an x86 machine):
  89.  
  90.     XCOPY /S /U /D D:\SUPPORT\DEBUG\I386\SYMBOLS C:\WINNT\SYMBOLS
  91.  
  92. This will copy the Service Pack 3 .DBG files over the existing versions of
  93. these files.  The XCOPY command shown will copy only those .DBG files that
  94. are already installed (/U switch), and only those with a more recent time-
  95. date stamp (/D switch).
  96.  
  97.  
  98. *** Verifying the proper Firmware for Powerized ES and MX PowerPC systems
  99.  
  100. To install Service Pack 3 on your Powerized ES or MX PowerPC system, you
  101. should first verify your Firmware is up-to-date.  Your Firmware should
  102. have a date of September 15, 1995.  You may use the fw-title command in
  103. the Firmware to verify this.  If you have an earlier ROM date, contact
  104. your hardware manufacturer to get the latest release of the Firmware.
  105.  
  106.  
  107. *** New APIs available with Service Pack 3
  108.  
  109. Service Pack 3 contains 3 additions to the Win32 API:
  110.  
  111. Fibers
  112. ------
  113. A fiber is a lightweight thread that is manually scheduled.  Fibers do not 
  114. provide advantages over a well-designed multithreaded application.  However, 
  115. fibers can make it easier to port applications that were designed to schedule 
  116. their own threads.  
  117.  
  118. Specific fiber APIs include:
  119.  
  120. ConvertThreadToFiber()
  121. CreateFiber()
  122. DeleteFiber()
  123. GetCurrentFiber()
  124. GetFiberData()
  125. SwitchToFiber()
  126.  
  127. Winsock Enhancement
  128. -------------------
  129. Two new APIs, AcceptEx() and GetAcceptExSockaddrs(), have been added to the 
  130. Windows Sockets family.  AcceptEx() provides a way to asynchronously accept a 
  131. connection, obtain the local and remote addresses for the connection, and 
  132. receive the first block of data, all within a single call.
  133.  
  134. Directory Monitoring
  135. --------------------
  136. One new API, ReadDirectoryChangesW(), has been added to enhance an application's 
  137. ability to monitor directories.  It allows an application to receive notification 
  138. whenever a change occurs in a directory.  These changes include file modifications, 
  139. renames, and deletions.  Unlike FindFirstChangeNotification(), this API will return 
  140. the full name of the affected file.
  141.  
  142. For complete details on these APIs, including headers, libraries and sample code, 
  143. see the Win32 SDK Addendum for Service Pack 3, available in the "For Developers Only"
  144. section of the Microsoft Web site at http://www.microsoft.com/devonly.
  145.  
  146.  
  147. 2.2  List of Bugs Fixed in Windows NT 3.51 U.S. Service Pack 3
  148. -------------------------------------------------------------
  149. NOTE: Use the Qxxxxxx number that precedes the title of the bug fix to
  150. query the Microsoft Knowledge Base to find an article about that bug.
  151.  
  152. Service Pack 1
  153. --------------
  154. Q128453: Windows NT 3.51 Hangs (Memory Access Violation) Running Exchange
  155. Q128454: Windows NT 3.51 Hangs with Office 95 (Word) Help File Wizard
  156. Q130093: Err Msg: Incorrect Response from the Network
  157. Q130292: Windows NT Win16 Subsystem Crashes Printing from Quicken 4.0
  158. Q130677: TCP/IP Generates Frames with Loopback Address as Source Address
  159. Q131343:  "Invalid Page Fault" Running Office 95 Help Wizard
  160. Q131427: Windows NT 3.51 TCP/IP System Network Interface Hang
  161. Q131683: Help File Opens Very Slowly with Office 95 Applications
  162. Q131779: Help Fails for VB Modules in Excel
  163. Q131865: SMC Elite Ultra NIC Causes UNIX Computers to Disconnect TCP/IP
  164. Q132470: STOP Msg: 0x0000000A or 0x0000001E When Using PING
  165. Q132858: PowerStack with Cirrus Video Adapter Hangs During Startup
  166. Q132198: Middle Mouse Button Does Not Work Under Windows NT 3.51
  167. Q132466: Problems Printing From DCA IRMA Workstation for NT 1.1
  168.  
  169. Service Pack 2
  170. --------------
  171. Q112665: UPDATE.EXE Starts Setup Help If Space Exists in Directory Path
  172. Q128567: Landscape Orientation Reversed With Postscript Driver
  173. Q129670: GSNW Not Releasing Session to NetWare Server
  174. Q129724: Macintosh Client Has Slow Access to Windows NT 3.5x SFM Volume
  175. Q130226: Banner Always Printed When Using GSNW Print Gateway
  176. Q130783: STOP Msg: 0x0000003F NO_MORE_SYSTEMS_PTES Repetitive I/O on MIPS
  177. Q130932: Desktop Remains Active At Logoff
  178. Q130979: User Environment Variables Set Before Default Home Directory
  179. Q131073: Datagram Sends Fail if Route is Not in IPX Cache
  180. Q131241: FTPSVC Orphans Connections, Uses Up Virtual Memory
  181. Q131428: DHCPADMN Reports Error 14 After You Select Local Machine
  182. Q131689: Postscript Jobs Do Not Print Correctly Over SFM and AppleTalk
  183. Q132085: Applications Hang When Opening Files when CSNW is Installed
  184. Q132394: Streaming Mode NPMCA.SYS NIC Sleeps on Transmit.
  185. Q132511: Windows NT 3.51 Hangs on Shutdown With Some S3 Based Video Cards
  186. Q132722: Server Instability After Reboot Caused by NDIS Driver Problem
  187. Q132896: FTP Client Scripts Terminate Without Completing
  188. Q132903: Err Msg Using NetBIOS over TCP/IP (NETBT.SYS): STOP 0x0000000A
  189. Q133112: NetWkstaSetUid2 API Returns Access Denied
  190. Q133128: Printing From Windows NT 3.51 to an HP4 at 600 DPI is Slow
  191. Q133252: Windows NT 3.51 GSNW Help Reports The File Is Corrupted
  192. Q133280: FTPSVC: Delay Receiving FTP Directory Annotation and Prompt
  193. Q133303: WINFILE.EXE Application Error When Associating a Searched File
  194. Q133306: Maximum Disk Space of 1.99 GB Displayed for NetWare Volume
  195. Q133384: Event ID 2019: Nonpaged Memory Pool Empty
  196. Q133410: The Breakpoint "{,<filename>,} .<line>" Cannot Be Set
  197. Q133488: LPR Printing Fails After Setting Up Security
  198. Q133701: Forward Slash May Be Ignored As A Path Delimiter In 3.51
  199. Q133757: Performance Monitor SQLServer-Log Object Corrupted
  200. Q134250: No Compaq Netflex Drivers in Windows NT 3.51 for RISC Platforms
  201. Q134285: STOP Msg: 0x0000007B or "0x4,0,0,0 Error" in WinNT 3.51 Setup
  202. Q134286: Windows NT 3.51 LsarLookupSids errors from Big Endian Servers
  203. Q134386: Computers Using QVision Display Driver Lock Up
  204. Q134427: Dr. Watson Access Violation Occurs Sending Mail Attachments
  205. Q134701: Uninitialized Pointers in DHCPSSVC.DLL Cause Access Violation
  206. Q134765: Unknown Software Exception When Application Calls OpenGL
  207. Q134959: Cannot copy Icons From a Common Group to a Personal Group
  208. Q134968: NetWare Connections Remain Connected After You Log
  209. Q134969: Faxing from 16-bit Program Using Separate Memory Space Fails
  210. Q134985: Browsing & Other Traffic Incur High Costs over ISDN Routers
  211. Q134988: Access Violation in glsbCreateAndDuplicateSection API on PowerPC
  212. Q135065: Windows NT 3.51 Hangs on Shutdown
  213. Q135275: Windows NT Backup : Incorrect Date in "Tape Name" Text
  214. Q135277: WINS Records of Multi-homed Computers Do Not Replicate
  215. Q135291: Print Manager: Owner Appears as System Printing from Macintosh
  216. Q135308: Disk Administrator Corrupts Partitions
  217. Q135471: Cannot Reconnect to OS/2 Name Space Resources on NetWare Server
  218. Q135548: PIF Editor Reserve Shortcut Keys Settings May Be Ineffective
  219. Q135553: IOCTL_NDIS_QUERY_ALL_STATS Causes STOP Msg in Windows NT 3.51
  220. Q135621: NetWare Transaction Tracking System (TTS) Not Detected
  221. Q135667: STOP 1E When Using File Manager and Services for Macintosh (SFM)
  222. Q135692: "List Name From" List Box Shows Only 20 Trusted Domains
  223. Q135724: Deleted Disk Space Not Released on Converted NTFS Volume
  224. Q135774: Performance Monitor Counters Produce Unlikely Results
  225. Q135777: Unable to Connect Using Cabletron EISA F70XX FDDI NIC
  226. Q135856: RIP Table Does Not Update When New RIPX Response Is Received
  227. Q136023: Batch Files Stop Executing with Windows NT version 3.51
  228. Q136024: Tape Hardware Data Compression Disabled After Running NTBackup
  229. Q136334: Access Violation in LSASS.EXE During User Password Change
  230. Q136336: Windows NT Fails Because of an Access Violation in WINLOGON
  231. Q136375: NTFS directory corruption with more than 100,000 files
  232. Q136402: IniFileMapping for 16-Bit Windows Apps Fail in Windows NT 3.51
  233. Q136472: NE3200 NIC Driver Can Lose Locally Administered Address
  234. Q136627: Layered Drivers Never See WINSOCK IRPs for the TCP/IP Device
  235. Q136780: WinFax Pro Software Causes 16-bit Applications To Hang
  236. Q136782: Unable To Connect To AT&T Advanced Server For UNIX Printer Share
  237.  
  238. Service Pack 3
  239. --------------
  240. Q126688: Stack Overflow with Windows NT 3.51 RAS
  241. Q126689: STOP Msg: c000021a Logging on a Second Time to WinNT 3.51 w/ SP2
  242. Q126967: New TCP/IP Registry Parameter Ignores Push Bit on Receives
  243. Q139281: STOP Msg: 0x0000004E or 0x0000000A Under Heavy Computer Usage
  244. Q139535: Some TrueType Fonts Do Not Produce Glyphs on Windows NT 3.51
  245. Q139635: RAS Authentication of Third Party PPP SPAP Clients Fail
  246. Q139714: RAS Stop 0x000000a 6194ea98 00000002 00000001 80115534
  247.